home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / biz / dopus / HTTPlister.lha / YAM2HTTPlister.rexx < prev   
OS/2 REXX Batch file  |  1998-10-22  |  1KB  |  45 lines

  1. /* YAM2HTTPlister.rexx */
  2.  
  3. /* This ARexx script is for getting a subscribed RECENT file loaded
  4.    into the lister using HTTPlister.rexx.
  5.  
  6.                   ----------
  7.   This is from the Aminet README:
  8.  
  9. - Mailing lists. If you want to get the list of new uploads mailed every
  10.   week, send a mail with 'SUBSCRIBE aminet-weekly Your Name' in the 
  11.   body to listproc@mail.wustl.edu or if you want daily updates, just use
  12.   'SUBSCRIBE aminet-daily' instead. Replace 'Your Name' with your real
  13.   name, of course. Keep the welcome mail in case you forget how to 
  14.   unsubscribe and for the password you get.
  15.  
  16.   Check the Aminet README for conformation.
  17.  
  18.                   ----------
  19.  
  20.    At the end of YAM's .config file enter..
  21.  
  22.    RexxMenu# = your:path_to/YAM2HTTPlister.rexx
  23.  
  24.    where # is the number of that menu item.
  25.  
  26.    You will need to set your path to 'HTTPlister.rexx' below.
  27.  
  28. */
  29.  
  30. ADDRESS 'YAM'
  31. options results
  32.  
  33. HTTPlister = "your:path_to/HTTPlister.rexx"
  34.  
  35. 'GetFolderInfo' MAX;   entries   = RESULT
  36.  
  37. if entries = 0 then EXIT
  38.  
  39. 'GetMailInfo' FILE; fil  = result
  40.  
  41. ADDRESS command 'rx '||HTTPlister||' '||fil
  42.  
  43. EXIT
  44.  
  45.